Event Target
interface EventTarget
Represents an event target that is able to process events, for example, a DOM node.
Provides methods to manage event listeners and dispatch events.
Inheritors
Functions
Link copied to clipboard
Adds the given
listener
to the event target.Link copied to clipboard
Link copied to clipboard
abstract fun removeEventListener(eventType: EventType, listener: Observer<Event>, useCapture: Boolean)
Removes the given
listener
from the event target.